/* ==============================
   CONTENEDOR PRINCIPAL
   ============================== */
#eci-centros-buscador{
  width: 770px;
  height: 280px;
  overflow-y: auto;
  overflow-x: hidden;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

/* ==============================
   FILA DE RESULTADO (HORIZONTAL)
   ============================== */
#eci-centros-buscador .eci-centro-card{
  display: grid;
  grid-template-columns: 90px 120px 140px 1fr;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
}

/* ==============================
   COLUMNA CENTRO (ROJO)
   ============================== */
#eci-centros-buscador .eci-centro-centro{
  font-size: 14px;
  font-weight: 700;
  color: #dc2626; /* rojo */
  text-align: center;
}

/* ==============================
   PROVINCIA
   ============================== */
#eci-centros-buscador .eci-centro-provincia{
  font-size: 12px;
  color: #374151;
  white-space: nowrap;
}

/* ==============================
   EMPRESA
   ============================== */
#eci-centros-buscador .eci-centro-empresa{
  font-size: 12px;
  color: #1f2937;
  white-space: nowrap;
}

/* ==============================
   NOMBRE EMPRESA (NEGRITA)
   ============================== */
#eci-centros-buscador .eci-centro-nombre{
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* ==============================
   EFECTO HOVER SUAVE
   ============================== */
#eci-centros-buscador .eci-centro-card:hover{
  background: #eef2ff;
  border-color: #c7d2fe;
}

/* ==============================
   SCROLL ELEGANTE
   ============================== */
#eci-centros-buscador::-webkit-scrollbar{
  width: 8px;
}
#eci-centros-buscador::-webkit-scrollbar-track{
  background: #f1f5f9;
  border-radius: 8px;
}
#eci-centros-buscador::-webkit-scrollbar-thumb{
  background: #c7d2fe;
  border-radius: 8px;
}

#eci-centros-buscador .eci-label{
  font-size: 11px;
  text-transform: uppercase;
  color: #6b7280;
  margin-right: 4px;
}

#eci-centros-buscador .eci-value{
  font-size: 13px;
  color: #111827;
  font-weight: 500;
}

